home *** CD-ROM | disk | FTP | other *** search
/ Especial Multimedia / Especial Multimedia.iso / Multimed / Prg / IMAGELIB.ZIP / MIMAGE.ZIP / IM_CVRT.DPR < prev    next >
Text File  |  1995-07-26  |  560b  |  24 lines

  1. {image conversion utility. }
  2.  
  3. program Im_cvrt;
  4. uses
  5.   Forms,
  6.   Bimage in 'BIMAGE.PAS' {Form1},
  7.   Bfullscr in 'BFULLSCR.PAS' {FullSlide},
  8.   Babout in 'BABOUT.PAS' {AboutBox};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.CreateForm(TFullSlide, FullSlide);
  15.   Application.CreateForm(TAboutBox, AboutBox);
  16.   Application.Run;
  17. end.
  18.  
  19.   delete this line after you added the component (Just wanted your attention)
  20.  
  21.   {The tmultiimage component can be downloaded from CIS delphi, it is
  22.    packed in the IMAGELIB.ZIP}
  23.  
  24.